home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / tvichw32.zip / HW_TEST.DPR < prev    next >
Text File  |  1997-03-07  |  193b  |  14 lines

  1. program HW_TEST;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TMainForm,MainForm);
  12.   Application.Run;
  13. end.
  14.